-
-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pydantic (2) support – addition of __get_pydantic_core_schema__ #276
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #276 +/- ##
==========================================
Coverage 100.00% 100.00%
==========================================
Files 8 9 +1
Lines 1801 1960 +159
==========================================
+ Hits 1801 1960 +159 ☔ View full report in Codecov by Sentry. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Use
stockholm.Money
in Pydantic modelsMoney
objects can be used in Pydantic (Pydantic>=2.2
supported) models and used with Pydantic's JSON serialization and validation – the same goes forNumber
andCurrency
objects as well.Previously validation of these types required the Pydantic config option
arbitrary_types_allowed
and JSON serialization withmodel_dump_json()
resulted in an exception. With these updates there's no need forarbitrary_types_allowed
and pydantic model's usingMoney
fields can use JSON serialization+deserialization natively.Specify the
stockholm.Money
type as the field type and you're good to go.It's also possible to use the
stockholm.types
Pydantic field types, for examplestockholm.types.ConvertibleToMoney
, which will automatically coerce input into aMoney
object.Other similar field types that can be used on Pydantic fields are:
stockholm.types.ConvertibleToNumber
stockholm.types.ConvertibleToMoneyWithRequiredCurrency
stockholm.types.ConvertibleToCurrency
Note that it's generally recommended to opt for the more strict types (
stockholm.Money
,stockholm.Number
andstockholm.Currency
) when possible and the coercion field types should be used with caution and is mainly suited for experimentation and early development.Related to issue: